home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 371 b | 19 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- deferred class QUADRUPEDE
-
- inherit
- ANIMAL
- redefine reproduction
- end;
-
- feature {ANY}
-
- reproduction(autre: ANIMAL): ANIMAL is
- do
- Result := autre.reproduction_avec_quadrupede(Current);
- end;
-
- end -- QUADRUPEDE
-